
  p {
    line-height: 1.6;
    margin: 15px 0;
  }
  .aboutDT4u-container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px 0;
  }

  .aboutDT4u-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  .aboutDT4u-highlight {
    color: #ff5722;
    font-weight: bold;
  }
  .aboutDT4u-list {
    list-style: none;
    padding: 0;
  }
  .aboutDT4u-list li {
    margin: 10px 0;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .aboutDT4u-list li:hover {
    background: #1a73e8;
    color: #fff;
    transform: translateX(10px);
  }

  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .aboutDT4u-section {
    animation: fadeIn 1s ease;
  }